All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.TableHeaderView

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.Responder
                   |
                   +----com.apple.alpha.app.View
                           |
                           +----com.apple.alpha.app.TableHeaderView

public class TableHeaderView
extends View
This class wraps the Objective-C class NSTableHeaderView.


Constructor Index

 o TableHeaderView()
This default constructor is equivalent to Objective-C's [[NSTableHeaderView alloc] init].
 o TableHeaderView(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o TableHeaderView(Coder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.
 o TableHeaderView(Rect)
This constructor has the same effect as calling - initWithFrame: on a newly allocated object.

Method Index

 o columnAtPoint(Point)
A wrapper for the - columnAtPoint: Objective-C instance method.
 o draggedColumn()
A wrapper for the - draggedColumn Objective-C instance method.
 o draggedDistance()
A wrapper for the - draggedDistance Objective-C instance method.
 o headerRectOfColumn(int)
A wrapper for the - headerRectOfColumn: Objective-C instance method.
 o resizedColumn()
A wrapper for the - resizedColumn Objective-C instance method.
 o setTableView(TableView)
A wrapper for the - setTableView: Objective-C instance method.
 o tableView()
A wrapper for the - tableView Objective-C instance method.

Constructors

 o TableHeaderView
 protected TableHeaderView(boolean shouldAllocate,
                           int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o TableHeaderView
 public TableHeaderView()
This default constructor is equivalent to Objective-C's [[NSTableHeaderView alloc] init].

 o TableHeaderView
 public TableHeaderView(Coder aDecoder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

 o TableHeaderView
 public TableHeaderView(Rect frameRect)
This constructor has the same effect as calling - initWithFrame: on a newly allocated object.

Methods

 o setTableView
 public native void setTableView(TableView tableView)
A wrapper for the - setTableView: Objective-C instance method.

 o tableView
 public native TableView tableView()
A wrapper for the - tableView Objective-C instance method.

 o draggedColumn
 public native int draggedColumn()
A wrapper for the - draggedColumn Objective-C instance method.

 o draggedDistance
 public native float draggedDistance()
A wrapper for the - draggedDistance Objective-C instance method.

 o resizedColumn
 public native int resizedColumn()
A wrapper for the - resizedColumn Objective-C instance method.

 o headerRectOfColumn
 public native Rect headerRectOfColumn(int column)
A wrapper for the - headerRectOfColumn: Objective-C instance method.

 o columnAtPoint
 public native int columnAtPoint(Point point)
A wrapper for the - columnAtPoint: Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index